From cb01d13034ad41a29533b623cbbf7c23b37a231c Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Mon, 2 Jul 2018 17:57:12 -0400 Subject: Removed test files --- test/controllers/admin/blogs_controller_test.rb | 19 ------------------- test/controllers/admin/dashboard_controller_test.rb | 9 --------- test/controllers/entries_controller_test.rb | 9 --------- test/controllers/records_controller_test.rb | 9 --------- test/fixtures/entries.yml | 15 --------------- test/fixtures/links.yml | 9 --------- test/fixtures/posts.yml | 9 --------- test/fixtures/records.yml | 7 ------- test/fixtures/users.yml | 11 ----------- test/models/entry_test.rb | 7 ------- test/models/link_test.rb | 7 ------- test/models/post_test.rb | 7 ------- test/models/record_test.rb | 7 ------- test/models/user_test.rb | 7 ------- 14 files changed, 132 deletions(-) delete mode 100644 test/controllers/admin/blogs_controller_test.rb delete mode 100644 test/controllers/admin/dashboard_controller_test.rb delete mode 100644 test/controllers/entries_controller_test.rb delete mode 100644 test/controllers/records_controller_test.rb delete mode 100644 test/fixtures/entries.yml delete mode 100644 test/fixtures/links.yml delete mode 100644 test/fixtures/posts.yml delete mode 100644 test/fixtures/records.yml delete mode 100644 test/fixtures/users.yml delete mode 100644 test/models/entry_test.rb delete mode 100644 test/models/link_test.rb delete mode 100644 test/models/post_test.rb delete mode 100644 test/models/record_test.rb delete mode 100644 test/models/user_test.rb diff --git a/test/controllers/admin/blogs_controller_test.rb b/test/controllers/admin/blogs_controller_test.rb deleted file mode 100644 index 5b62eff..0000000 --- a/test/controllers/admin/blogs_controller_test.rb +++ /dev/null @@ -1,19 +0,0 @@ -require 'test_helper' - -class Admin::BlogsControllerTest < ActionDispatch::IntegrationTest - test "should get index" do - get admin_blogs_index_url - assert_response :success - end - - test "should get new" do - get admin_blogs_new_url - assert_response :success - end - - test "should get edit" do - get admin_blogs_edit_url - assert_response :success - end - -end diff --git a/test/controllers/admin/dashboard_controller_test.rb b/test/controllers/admin/dashboard_controller_test.rb deleted file mode 100644 index 42bacb9..0000000 --- a/test/controllers/admin/dashboard_controller_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' - -class Admin::DashboardControllerTest < ActionDispatch::IntegrationTest - test "should get index" do - get admin_dashboard_index_url - assert_response :success - end - -end diff --git a/test/controllers/entries_controller_test.rb b/test/controllers/entries_controller_test.rb deleted file mode 100644 index 6e2db59..0000000 --- a/test/controllers/entries_controller_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' - -class EntriesControllerTest < ActionDispatch::IntegrationTest - test "should get show" do - get entries_show_url - assert_response :success - end - -end diff --git a/test/controllers/records_controller_test.rb b/test/controllers/records_controller_test.rb deleted file mode 100644 index 6eeb2c3..0000000 --- a/test/controllers/records_controller_test.rb +++ /dev/null @@ -1,9 +0,0 @@ -require 'test_helper' - -class RecordsControllerTest < ActionDispatch::IntegrationTest - test "should get index" do - get records_index_url - assert_response :success - end - -end diff --git a/test/fixtures/entries.yml b/test/fixtures/entries.yml deleted file mode 100644 index 7bb736a..0000000 --- a/test/fixtures/entries.yml +++ /dev/null @@ -1,15 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - title: MyString - body: MyText - directory: MyString - slug: MyString - type: - -two: - title: MyString - body: MyText - directory: MyString - slug: MyString - type: diff --git a/test/fixtures/links.yml b/test/fixtures/links.yml deleted file mode 100644 index 1560785..0000000 --- a/test/fixtures/links.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - directory: MyString - slug: MyString - -two: - directory: MyString - slug: MyString diff --git a/test/fixtures/posts.yml b/test/fixtures/posts.yml deleted file mode 100644 index e192dee..0000000 --- a/test/fixtures/posts.yml +++ /dev/null @@ -1,9 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - title: MyString - body: MyText - -two: - title: MyString - body: MyText diff --git a/test/fixtures/records.yml b/test/fixtures/records.yml deleted file mode 100644 index 2e0c8cd..0000000 --- a/test/fixtures/records.yml +++ /dev/null @@ -1,7 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -one: - description: MyText - -two: - description: MyText diff --git a/test/fixtures/users.yml b/test/fixtures/users.yml deleted file mode 100644 index 80aed36..0000000 --- a/test/fixtures/users.yml +++ /dev/null @@ -1,11 +0,0 @@ -# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html - -# This model initially had no columns defined. If you add columns to the -# model remove the '{}' from the fixture names and add the columns immediately -# below each fixture, per the syntax in the comments below -# -one: {} -# column: value -# -two: {} -# column: value diff --git a/test/models/entry_test.rb b/test/models/entry_test.rb deleted file mode 100644 index d3293bc..0000000 --- a/test/models/entry_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class EntryTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/link_test.rb b/test/models/link_test.rb deleted file mode 100644 index 944bfce..0000000 --- a/test/models/link_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class LinkTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/post_test.rb b/test/models/post_test.rb deleted file mode 100644 index 6d9d463..0000000 --- a/test/models/post_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class PostTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/record_test.rb b/test/models/record_test.rb deleted file mode 100644 index 47cf779..0000000 --- a/test/models/record_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class RecordTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end diff --git a/test/models/user_test.rb b/test/models/user_test.rb deleted file mode 100644 index 82f61e0..0000000 --- a/test/models/user_test.rb +++ /dev/null @@ -1,7 +0,0 @@ -require 'test_helper' - -class UserTest < ActiveSupport::TestCase - # test "the truth" do - # assert true - # end -end -- cgit 1.4.1