test/server_test.rb in copy-0.1.5 vs test/server_test.rb in copy-0.1.6
- old
+ new
@@ -160,20 +160,14 @@
assert_match 'jQuery JavaScript Library', last_response.body
end
test "GET /_copy/:name" do
Copy::Storage.stubs(:connected?).returns(true)
- Copy::Storage.expects(:get).with('fun').returns('"party"')
+ Copy::Storage.expects(:get).with('fun').returns("<b>party\n")
authorize!
get '/_copy/fun'
assert last_response.ok?, last_response.errors
- # Single line content renders in a text field
- assert_match 'value=""party""', last_response.body
-
- # Multiline renders in a textarea
- Copy::Storage.expects(:get).with('fun').returns("<b>party\n")
- get '/_copy/fun'
assert_match "<b>party\n</textarea>", last_response.body
end
test "PUT /_copy/:name" do
Copy::Storage.stubs(:connected?).returns(true)
\ No newline at end of file