diff --git a/test/requests/create_post_test.rb b/test/requests/create_post_test.rb index e7f84d6..42b48f2 100644 --- a/test/requests/create_post_test.rb +++ b/test/requests/create_post_test.rb @@ -9,7 +9,7 @@ describe "create post" do end it "creates a simple post" do - post '/micropub/main', { + post "/micropub/main", { content: "Hello, World!" } @@ -20,12 +20,12 @@ describe "create post" do end it "creates a post with a title" do - post '/micropub/main', { + post "/micropub/main", { title: "My money's in that office, right?", content: <<~CONTENT, - If she start giving me some bullshit about it ain't there, and we got - to go someplace else and get it, I'm gonna shoot you in the head then - and there. Then I'm gonna shoot that bitch in the kneecaps, find out + If she start giving me some bullshit about it ain"t there, and we got + to go someplace else and get it, I"m gonna shoot you in the head then + and there. Then I"m gonna shoot that bitch in the kneecaps, find out where my goddamn money is. CONTENT } @@ -37,7 +37,7 @@ describe "create post" do end it "creates a post with a single category" do - post '/micropub/main', { + post "/micropub/main", { content: "Hello, World!", category: "my-blog", } @@ -49,7 +49,7 @@ describe "create post" do end it "creates a post with multiple categories" do - post '/micropub/main', { + post "/micropub/main", { content: "Hello, World!", category: ["one", "two", "three"], } @@ -59,4 +59,7 @@ describe "create post" do assert_equal last_response.headers["Location"], "https://test.danbarber.me/blog/#{date}/hello-world" end + + it "creates a post with JSON" do + end end