mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 13:19:39 +02:00
13 lines
266 B
Ruby
13 lines
266 B
Ruby
|
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
|