diff options
Diffstat (limited to 'spec/helpers')
| -rw-r--r-- | spec/helpers/exports_helper_spec.rb | 2 | ||||
| -rw-r--r-- | spec/helpers/help_helper_spec.rb | 2 | ||||
| -rw-r--r-- | spec/helpers/imports_helper_spec.rb | 2 | ||||
| -rw-r--r-- | spec/helpers/referentials_helper_spec.rb | 2 | 
4 files changed, 4 insertions, 4 deletions
| diff --git a/spec/helpers/exports_helper_spec.rb b/spec/helpers/exports_helper_spec.rb index fec8252d5..3d6b8e70e 100644 --- a/spec/helpers/exports_helper_spec.rb +++ b/spec/helpers/exports_helper_spec.rb @@ -6,7 +6,7 @@ require 'spec_helper'  # describe ExportsHelper do  #   describe "string concat" do  #     it "concats two strings with spaces" do -#       helper.concat_strings("this","that").should == "this that" +#       expect(helper.concat_strings("this","that")).to == "this that"  #     end  #   end  # end diff --git a/spec/helpers/help_helper_spec.rb b/spec/helpers/help_helper_spec.rb index 3df091c10..0b0de512b 100644 --- a/spec/helpers/help_helper_spec.rb +++ b/spec/helpers/help_helper_spec.rb @@ -6,7 +6,7 @@ require 'spec_helper'  # describe HelpHelper do  #   describe "string concat" do  #     it "concats two strings with spaces" do -#       helper.concat_strings("this","that").should == "this that" +#       expect(helper.concat_strings("this","that")).to == "this that"  #     end  #   end  # end diff --git a/spec/helpers/imports_helper_spec.rb b/spec/helpers/imports_helper_spec.rb index ec3bb05c5..12cddeb25 100644 --- a/spec/helpers/imports_helper_spec.rb +++ b/spec/helpers/imports_helper_spec.rb @@ -6,7 +6,7 @@ require 'spec_helper'  # describe ImportsHelper do  #   describe "string concat" do  #     it "concats two strings with spaces" do -#       helper.concat_strings("this","that").should == "this that" +#       expect(helper.concat_strings("this","that")).to == "this that"  #     end  #   end  # end diff --git a/spec/helpers/referentials_helper_spec.rb b/spec/helpers/referentials_helper_spec.rb index 6efc13822..6b659dc8b 100644 --- a/spec/helpers/referentials_helper_spec.rb +++ b/spec/helpers/referentials_helper_spec.rb @@ -6,7 +6,7 @@ require 'spec_helper'  # describe ReferentialsHelper do  #   describe "string concat" do  #     it "concats two strings with spaces" do -#       helper.concat_strings("this","that").should == "this that" +#       expect(helper.concat_strings("this","that")).to == "this that"  #     end  #   end  # end | 
