9 lines
186 B
Ruby
9 lines
186 B
Ruby
|
require "test_helper"
|
||
|
|
||
|
class WeatherArtsControllerTest < ActionDispatch::IntegrationTest
|
||
|
test "should get show" do
|
||
|
get weather_arts_show_url
|
||
|
assert_response :success
|
||
|
end
|
||
|
end
|