Sha256: 2ad59ff39eab48947f9a60c6f1a9c8ae4c4f64ed67e770596503382625100124
Contents?: true
Size: 653 Bytes
Versions: 21
Compression:
Stored size: 653 Bytes
Contents
require 'rspec' require 'cantango' require 'fixtures/models' require 'cantango/configuration/engines/store_engine_shared' require 'path_helper' describe CanTango::Configuration::Engines::Permission do subject { CanTango.config.permission_engine } it_should_behave_like 'Store Engine' do subject { CanTango.config.permission_engine } end it_should_behave_like 'Store' do subject { CanTango.config.permission_engine.store } end describe 'config_path' do let(:yml_path) { File.join dummy_root_path, 'config' } before do subject.config_path yml_path end its(:config_path) { should == yml_path } end end
Version data entries
21 entries across 21 versions & 1 rubygems