tab/spec/apis/transactions_controller_spec.rb
2015-09-09 21:52:16 +02:00

19 lines
542 B
Ruby

describe TransactionsController, type: :api do
before :each do
@client = Client.create name: "Tap"
@key = @client.key
end
describe "Authentication" do
it "should require a client authentication key" do
post '/transactions'
expect(last_response.status).to eq(401)
end
it "should work with valid key" do
post '/transactions', { transaction: attributes_for(:transaction) }, { 'HTTP_ACCEPT' => "application/json", "X_API_KEY" => @key }
expect(last_response.status).to eq(201)
end
end
end