aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support
diff options
context:
space:
mode:
authorTeddy Wing2018-02-08 11:56:35 +0100
committerTeddy Wing2018-02-08 11:56:35 +0100
commitf9e8dd00ff0a8ed935789e83d0cdc2ffdfb7d1bb (patch)
treeefc693773c80017c76c9965252270dc5d0784c83 /spec/support
parentf3769c9d9fa0d4bf3c620a9c95e0c7533da9801c (diff)
downloadchouette-core-f9e8dd00ff0a8ed935789e83d0cdc2ffdfb7d1bb.tar.bz2
checksum_support.rb: Rename `seperator` to `separator`
Fix spelling. Refs #5416
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/checksum_support.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/spec/support/checksum_support.rb b/spec/support/checksum_support.rb
index 3d88d1d57..760955274 100644
--- a/spec/support/checksum_support.rb
+++ b/spec/support/checksum_support.rb
@@ -1,22 +1,22 @@
shared_examples 'checksum support' do
describe '#current_checksum_source' do
let(:attributes) { ['code_value', 'label_value'] }
- let(:seperator) { ChecksumSupport::SEPARATOR }
+ let(:separator) { ChecksumSupport::SEPARATOR }
let(:nil_value) { ChecksumSupport::VALUE_FOR_NIL_ATTRIBUTE }
before do
allow_any_instance_of(subject.class).to receive(:checksum_attributes).and_return(attributes)
end
- it 'should separate attribute by seperator' do
- expect(subject.current_checksum_source).to eq("code_value#{seperator}label_value")
+ it 'should separate attribute by separator' do
+ expect(subject.current_checksum_source).to eq("code_value#{separator}label_value")
end
context 'nil value' do
let(:attributes) { ['code_value', nil] }
it 'should replace nil attributes by default value' do
- source = "code_value#{seperator}#{nil_value}"
+ source = "code_value#{separator}#{nil_value}"
expect(subject.current_checksum_source).to eq(source)
end
end
@@ -25,7 +25,7 @@ shared_examples 'checksum support' do
let(:attributes) { ['code_value', []] }
it 'should convert to nil' do
- source = "code_value#{seperator}#{nil_value}"
+ source = "code_value#{separator}#{nil_value}"
expect(subject.current_checksum_source).to eq(source)
end
end
@@ -34,7 +34,7 @@ shared_examples 'checksum support' do
let(:attributes) { [['v1', 'v2', 'v3'], 'code_value'] }
it 'should convert to list' do
- source = "v1,v2,v3#{seperator}code_value"
+ source = "v1,v2,v3#{separator}code_value"
expect(subject.current_checksum_source).to eq(source)
end
end
@@ -43,7 +43,7 @@ shared_examples 'checksum support' do
let(:attributes) { [[['a1', 'a2', 'a3'], ['b1', 'b2', 'b3']], 'code_value'] }
it 'should convert to list' do
- source = "(a1,a2,a3),(b1,b2,b3)#{seperator}code_value"
+ source = "(a1,a2,a3),(b1,b2,b3)#{separator}code_value"
expect(subject.current_checksum_source).to eq(source)
end
end
@@ -52,7 +52,7 @@ shared_examples 'checksum support' do
let(:attributes) { [[['a1', 'a2', 'a3'], []], 'code_value'] }
it 'should convert to list' do
- source = "(a1,a2,a3),-#{seperator}code_value"
+ source = "(a1,a2,a3),-#{separator}code_value"
expect(subject.current_checksum_source).to eq(source)
end
end