push
github
0 of 8 new or added lines in 8 files covered. (0.0%)
2169 existing lines in 58 files now uncovered.0 of 2253 relevant lines covered (0.0%)
0.0 hits per line
UNCOV
1
|
RSpec.describe Unleash do |
× |
UNCOV
2
|
it "has a version number" do |
× |
UNCOV
3
|
expect(Unleash::VERSION).not_to be nil |
× |
4 |
end
|
|
5 |
|
|
UNCOV
6
|
it "does something useful" do |
× |
UNCOV
7
|
expect(false).to eq(false) |
× |
8 |
end
|
|
9 |
|
|
UNCOV
10
|
context 'when configured' do |
× |
UNCOV
11
|
before do
|
× |
UNCOV
12
|
Unleash.configure do |config| |
× |
UNCOV
13
|
config.app_name = 'rspec_test'
|
× |
UNCOV
14
|
config.url = 'http://testurl/'
|
× |
15 |
end
|
|
16 |
end
|
|
17 |
|
|
UNCOV
18
|
it 'has configuration' do |
× |
UNCOV
19
|
expect(described_class.configuration).to be_instance_of(Unleash::Configuration) |
× |
20 |
end
|
|
21 |
|
|
UNCOV
22
|
it 'proxies strategies to config' do |
× |
UNCOV
23
|
expect(described_class.strategies).to eq(Unleash.configuration.strategies)
|
× |
24 |
end
|
|
25 |
end
|
|
26 |
end
|