19 lines
369 B
Ruby
19 lines
369 B
Ruby
require "test_helper"
|
|
|
|
describe AdminController do
|
|
it "should get status" do
|
|
get admin_status_url
|
|
value(response).must_be :success?
|
|
end
|
|
|
|
it "should get screenshots" do
|
|
get admin_screenshots_url
|
|
value(response).must_be :success?
|
|
end
|
|
|
|
it "should get integration" do
|
|
get admin_integration_url
|
|
value(response).must_be :success?
|
|
end
|
|
|
|
end
|