blob: 02523e026e0b2a22a458035c2a88d7f226f22d04 (
plain)
1
2
3
4
5
6
7
8
|
require "test_helper"
class NutrientMeasurementControllerTest < ActionDispatch::IntegrationTest
test "should get index" do
get nutrient_measurement_index_url
assert_response :success
end
end
|