diff --git a/spec/cld_spec.rb b/spec/cld_spec.rb index ad14694..afad0e3 100644 --- a/spec/cld_spec.rb +++ b/spec/cld_spec.rb @@ -28,14 +28,14 @@ end context "French in HTML - using CLD html " do - subject { CLD.detect_language("
plus ça change, plus c'est la même chose
", false) } + subject { CLD.detect_language("plus ça change, plus c'est la même chose
", false, false) } it { subject[:name].should eq("FRENCH") } it { subject[:code].should eq("fr") } end context "French in HTML - using CLD text " do - subject { CLD.detect_language("plus ça change, plus c'est la même chose
", true) } + subject { CLD.detect_language("plus ça change, plus c'est la même chose
", false, true) } it { subject[:name].should eq("ENGLISH") } it { subject[:code].should eq("en") }