about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2018-07-02 17:57:12 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2018-07-03 14:01:41 -0400
commitcb01d13034ad41a29533b623cbbf7c23b37a231c (patch)
tree9bc6af28ed506ec46ce4a41f590e859d972cfd51
parent3a116a19d655622cd08eff1c8baf63c21477bdcb (diff)
downloadthoughts-cb01d13034ad41a29533b623cbbf7c23b37a231c.tar.gz
thoughts-cb01d13034ad41a29533b623cbbf7c23b37a231c.tar.bz2
thoughts-cb01d13034ad41a29533b623cbbf7c23b37a231c.zip
Removed test files
-rw-r--r--test/controllers/admin/blogs_controller_test.rb19
-rw-r--r--test/controllers/admin/dashboard_controller_test.rb9
-rw-r--r--test/controllers/entries_controller_test.rb9
-rw-r--r--test/controllers/records_controller_test.rb9
-rw-r--r--test/fixtures/entries.yml15
-rw-r--r--test/fixtures/links.yml9
-rw-r--r--test/fixtures/posts.yml9
-rw-r--r--test/fixtures/records.yml7
-rw-r--r--test/fixtures/users.yml11
-rw-r--r--test/models/entry_test.rb7
-rw-r--r--test/models/link_test.rb7
-rw-r--r--test/models/post_test.rb7
-rw-r--r--test/models/record_test.rb7
-rw-r--r--test/models/user_test.rb7
14 files changed, 0 insertions, 132 deletions
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 @@
1require 'test_helper'
2
3class Admin::BlogsControllerTest < ActionDispatch::IntegrationTest
4 test "should get index" do
5 get admin_blogs_index_url
6 assert_response :success
7 end
8
9 test "should get new" do
10 get admin_blogs_new_url
11 assert_response :success
12 end
13
14 test "should get edit" do
15 get admin_blogs_edit_url
16 assert_response :success
17 end
18
19end
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 @@
1require 'test_helper'
2
3class Admin::DashboardControllerTest < ActionDispatch::IntegrationTest
4 test "should get index" do
5 get admin_dashboard_index_url
6 assert_response :success
7 end
8
9end
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 @@
1require 'test_helper'
2
3class EntriesControllerTest < ActionDispatch::IntegrationTest
4 test "should get show" do
5 get entries_show_url
6 assert_response :success
7 end
8
9end
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 @@
1require 'test_helper'
2
3class RecordsControllerTest < ActionDispatch::IntegrationTest
4 test "should get index" do
5 get records_index_url
6 assert_response :success
7 end
8
9end
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 @@
1# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
3one:
4 title: MyString
5 body: MyText
6 directory: MyString
7 slug: MyString
8 type:
9
10two:
11 title: MyString
12 body: MyText
13 directory: MyString
14 slug: MyString
15 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 @@
1# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
3one:
4 directory: MyString
5 slug: MyString
6
7two:
8 directory: MyString
9 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 @@
1# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
3one:
4 title: MyString
5 body: MyText
6
7two:
8 title: MyString
9 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 @@
1# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
3one:
4 description: MyText
5
6two:
7 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 @@
1# Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
2
3# This model initially had no columns defined. If you add columns to the
4# model remove the '{}' from the fixture names and add the columns immediately
5# below each fixture, per the syntax in the comments below
6#
7one: {}
8# column: value
9#
10two: {}
11# 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 @@
1require 'test_helper'
2
3class EntryTest < ActiveSupport::TestCase
4 # test "the truth" do
5 # assert true
6 # end
7end
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 @@
1require 'test_helper'
2
3class LinkTest < ActiveSupport::TestCase
4 # test "the truth" do
5 # assert true
6 # end
7end
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 @@
1require 'test_helper'
2
3class PostTest < ActiveSupport::TestCase
4 # test "the truth" do
5 # assert true
6 # end
7end
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 @@
1require 'test_helper'
2
3class RecordTest < ActiveSupport::TestCase
4 # test "the truth" do
5 # assert true
6 # end
7end
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 @@
1require 'test_helper'
2
3class UserTest < ActiveSupport::TestCase
4 # test "the truth" do
5 # assert true
6 # end
7end