Sha256: ac141c5b77fd24f141e1e3508f67e09362d0d8708f71174fea29391694f0fb27

Contents?: true

Size: 381 Bytes

Versions: 3

Compression:

Stored size: 381 Bytes

Contents

require 'test_helper'

class UserCreateTest < ActionDispatch::IntegrationTest

  fixtures :all

  test "create user" do
    get new_user_path
    assert_response :success

    post users_path, { :name => users(:default).name, :email => users(:default).email, :fb_share => "0", :tw_share => "0", :tb_share => "false" }
    assert_response :redirect

    follow_redirect!
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
serializer-1.0.2 test/dummy/test/integration/user_create_test.rb
serializer-1.0.1 test/dummy/test/integration/user_create_test.rb
serializer-1.0.0 test/dummy/test/integration/user_create_test.rb