1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-07-19 21:29:38 +02:00
Maybe/test/controllers/currencies_controller_test.rb

13 lines
266 B
Ruby
Raw Normal View History

require "test_helper"
class CurrenciesControllerTest < ActionDispatch::IntegrationTest
setup do
sign_in @user = users(:family_admin)
end
test "should show currency" do
get currency_url(id: "EUR", format: :json)
assert_response :success
end
end