diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 00:25:50 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-21 00:25:50 -0400 |
commit | 96813a5e508a54257ef03be613a704f1f71af53d (patch) | |
tree | a50f5c8dc27304a3ca27366b6268a72804727e16 /test/controllers | |
parent | 2a7a19c93ee0e0d77e4e388d43f36a721c7ab715 (diff) | |
download | thoughts-96813a5e508a54257ef03be613a704f1f71af53d.tar.gz thoughts-96813a5e508a54257ef03be613a704f1f71af53d.tar.bz2 thoughts-96813a5e508a54257ef03be613a704f1f71af53d.zip |
Added quotes database
Diffstat (limited to 'test/controllers')
-rw-r--r-- | test/controllers/quotes_controller_test.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/controllers/quotes_controller_test.rb b/test/controllers/quotes_controller_test.rb new file mode 100644 index 0000000..a085d40 --- /dev/null +++ b/test/controllers/quotes_controller_test.rb | |||
@@ -0,0 +1,18 @@ | |||
1 | require "test_helper" | ||
2 | |||
3 | class QuotesControllerTest < ActionDispatch::IntegrationTest | ||
4 | test "should get index" do | ||
5 | get quotes_index_url | ||
6 | assert_response :success | ||
7 | end | ||
8 | |||
9 | test "should get show" do | ||
10 | get quotes_show_url | ||
11 | assert_response :success | ||
12 | end | ||
13 | |||
14 | test "should get new" do | ||
15 | get quotes_new_url | ||
16 | assert_response :success | ||
17 | end | ||
18 | end | ||