diff --git a/test/functional/note_previews_controller_test.rb b/test/functional/note_previews_controller_test.rb new file mode 100644 index 000000000..1a8016945 --- /dev/null +++ b/test/functional/note_previews_controller_test.rb @@ -0,0 +1,12 @@ +require 'test_helper' + +class NotePreviewsControllerTest < ActionController::TestCase + context "The note previews controller" do + context "show action" do + should "work" do + get :show, { body: "test", format: "json" } + assert_response :success + end + end + end +end