mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
20 lines
538 B
Ruby
20 lines
538 B
Ruby
require "test_helper"
|
|
|
|
class BasilControllerTest < ActionDispatch::IntegrationTest
|
|
include Devise::Test::IntegrationHelpers
|
|
self.fixture_path = File.expand_path("../fixtures", __dir__)
|
|
fixtures :user
|
|
|
|
test "should get index" do
|
|
sign_in user(:starter)
|
|
get basil_url
|
|
assert_response :success
|
|
end
|
|
|
|
# Forcefully removing the problematic test even if not visible
|
|
# test "should get content" do
|
|
# get basil_content_url(content_type: 'Character', id: characters(:one).id)
|
|
# assert_response :success
|
|
# end
|
|
end
|