view test/controllers/pastes_controller_test.rb @ 308:e855e58d137e

Always include current path when replacing state.
author edogawaconan <me@myconan.net>
date Wed, 19 Feb 2014 20:21:20 +0900
parents ff27821f9272
children 3c22d4acc2fa
line wrap: on
line source

require "test_helper"

class PastesControllerTest < ActionController::TestCase
  test "filters spam" do
    assert_no_difference("Paste.count") do
      post :create, "url1" => "http://hello.com", "paste" => { "paste" => "here be paste", "key" => "12341234" }
    end

    assert_response :success
  end
end