diff options
| author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-12 17:10:34 -0400 |
|---|---|---|
| committer | Star Rauchenberger <fefferburbia@gmail.com> | 2023-10-12 17:10:34 -0400 |
| commit | 835af696703484208882a70cc5dd47c5838ecf58 (patch) | |
| tree | 8174d5b8c6f2486da56569bad361dd10aa1183f8 /test/controllers/comments_controller_test.rb | |
| parent | b24e6f58a525fc576e23ef9d498745e64c16cd6c (diff) | |
| download | thoughts-835af696703484208882a70cc5dd47c5838ecf58.tar.gz thoughts-835af696703484208882a70cc5dd47c5838ecf58.tar.bz2 thoughts-835af696703484208882a70cc5dd47c5838ecf58.zip | |
Added blog post commenting
Diffstat (limited to 'test/controllers/comments_controller_test.rb')
| -rw-r--r-- | test/controllers/comments_controller_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
| diff --git a/test/controllers/comments_controller_test.rb b/test/controllers/comments_controller_test.rb new file mode 100644 index 0000000..3bcb0dc --- /dev/null +++ b/test/controllers/comments_controller_test.rb | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | require "test_helper" | ||
| 2 | |||
| 3 | class CommentsControllerTest < ActionDispatch::IntegrationTest | ||
| 4 | test "should get create" do | ||
| 5 | get comments_create_url | ||
| 6 | assert_response :success | ||
| 7 | end | ||
| 8 | end | ||
