diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 18:58:50 -0500 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2024-12-07 18:58:50 -0500 |
commit | 9d8deddb0a9df7d4d7d4b649ddf01b15570719e0 (patch) | |
tree | 3e98477e2bf2e38a6c0bd372a417ac507950d194 /test | |
parent | a30b6daedb8b71606abe0e83f82e1f7c356cab6b (diff) | |
download | thoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.tar.gz thoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.tar.bz2 thoughts-9d8deddb0a9df7d4d7d4b649ddf01b15570719e0.zip |
Moved webmentions to a single endpoint
Diffstat (limited to 'test')
-rw-r--r-- | test/controllers/webmentions_controller_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/controllers/webmentions_controller_test.rb b/test/controllers/webmentions_controller_test.rb new file mode 100644 index 0000000..cc7bb42 --- /dev/null +++ b/test/controllers/webmentions_controller_test.rb | |||
@@ -0,0 +1,8 @@ | |||
1 | require "test_helper" | ||
2 | |||
3 | class WebmentionsControllerTest < ActionDispatch::IntegrationTest | ||
4 | test "should get create" do | ||
5 | get webmentions_create_url | ||
6 | assert_response :success | ||
7 | end | ||
8 | end | ||