Sha256: 08a3b8fc04a6f4bebf4718860c1eaf322093b2e453b4f0e7494964eb167512d8

Contents?: true

Size: 390 Bytes

Versions: 1

Compression:

Stored size: 390 Bytes

Contents

require 'test_helper_dummy'
require File.expand_path('../../dummy_app/lib/library', __FILE__)

class LibraryTest < ActiveSupport::TestCase
  it 'reflects' do
    describing_class.must_equal LibraryTest
    described_class.must_equal Library
  end
end

describe Library do
  it 'reflects' do
    described_class.must_equal Library
    self.class.described_class.must_equal Library
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
minitest-spec-rails-3.1.2 test/dummy_tests/library_test.rb