+ # Not sure this is the best response we could give
+ def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API")
+ assert_response :unauthorized, msg
+ #assert_equal @response.headers['Error'], ""
+ end
+
+ def assert_no_missing_translations(msg="")
+ assert_select "span[class=translation_missing]", false, "Missing translation #{msg}"
+ end
+