mirror of
https://github.com/indentlabs/notebook.git
synced 2025-10-26 11:19:22 +00:00
8 lines
176 B
Ruby
8 lines
176 B
Ruby
require 'test_helper'
|
|
|
|
class SessionTest < ActiveSupport::TestCase
|
|
test "session exists" do
|
|
assert_not_nil build(:session), "Sessions factory is returning nil"
|
|
end
|
|
end
|