should_not == -> expect().not_to eq

MSP-13484
bug/bundler_fix
Luke Imhoff 2015-10-20 10:29:23 -05:00 committed by Brent Cook
parent fc9ca84da5
commit 3fff6cabce
6 changed files with 15 additions and 15 deletions

View File

@ -50,7 +50,7 @@ RSpec.describe ActiveRecord::ConnectionAdapters::ConnectionPool do
context 'in thread without connection' do
it 'should be false' do
thread = Thread.new do
Thread.current.should_not == main_thread
expect(Thread.current).not_to eq main_thread
expect(active_connection?).to be_falsey
end

View File

@ -139,7 +139,7 @@ RSpec.describe Msf::Exploit::Remote::HttpClient do
end
it "should not have a trailing '/'" do
unnormalized_uri[-1, 1].should_not == '/'
expect(unnormalized_uri[-1, 1]).not_to eq '/'
end
it "should return original string" do
@ -190,7 +190,7 @@ RSpec.describe Msf::Exploit::Remote::HttpClient do
end
it "should not have trailing '/'" do
unnormalized_uri[-1, 1].should_not == '/'
expect(unnormalized_uri[-1, 1]).not_to eq '/'
end
it "should add starting '/'" do
@ -198,7 +198,7 @@ RSpec.describe Msf::Exploit::Remote::HttpClient do
end
it "should add trailing '/'" do
normalized_uri[-1, 1].should_not == '/'
expect(normalized_uri[-1, 1]).not_to eq '/'
end
end
end

View File

@ -853,7 +853,7 @@ RSpec.describe Msf::Modules::Loader::Base do
non_module_extension = '.c'
path = "path/with/wrong/extension#{non_module_extension}"
non_module_extension.should_not == described_class::MODULE_EXTENSION
expect(non_module_extension).not_to eq described_class::MODULE_EXTENSION
subject.send(:module_path?, path).should be_falsey
end
@ -968,7 +968,7 @@ RSpec.describe Msf::Modules::Loader::Base do
it 'should create a new namespace module for the block' do
subject.send(:namespace_module_transaction, module_full_name) do |namespace_module|
namespace_module.should_not == @existent_namespace_module
expect(namespace_module).not_to eq @existent_namespace_module
expect {
namespace_module::Metasploit3
@ -995,7 +995,7 @@ RSpec.describe Msf::Modules::Loader::Base do
current_constant = Msf::Modules.const_get(relative_name)
current_constant.should == namespace_module
current_constant.should_not == @existent_namespace_module
expect(current_constant).not_to eq @existent_namespace_module
raise error_class, error_message
end
@ -1022,7 +1022,7 @@ RSpec.describe Msf::Modules::Loader::Base do
current_constant = Msf::Modules.const_get(relative_name)
current_constant.should == namespace_module
current_constant.should_not == @existent_namespace_module
expect(current_constant).not_to eq @existent_namespace_module
false
end
@ -1048,7 +1048,7 @@ RSpec.describe Msf::Modules::Loader::Base do
current_constant = Msf::Modules.const_get(relative_name)
current_constant.should_not be_nil
current_constant.should_not == @existent_namespace_module
expect(current_constant).not_to eq @existent_namespace_module
end
it 'should return true' do
@ -1292,7 +1292,7 @@ RSpec.describe Msf::Modules::Loader::Base do
end
it 'should restore the module to the constant' do
parent_module.const_get(relative_name).should_not == @original_namespace_module
expect(parent_module.const_get(relative_name)).not_to eq @original_namespace_module
subject.send(:restore_namespace_module, parent_module, relative_name, @original_namespace_module)

View File

@ -302,7 +302,7 @@ RSpec.describe Rex::SSLScan::Result do
it "should return only the ciphers for the specified version" do
subject.each_accepted([:SSLv3,:TLSv1]) do |cipher_details|
cipher_details[:version].should_not == :SSLv2
expect(cipher_details[:version]).not_to eq :SSLv2
end
end
end
@ -358,7 +358,7 @@ RSpec.describe Rex::SSLScan::Result do
it "should return only the ciphers for the specified version" do
subject.each_rejected([:SSLv3,:TLSv1]) do |cipher_details|
cipher_details[:version].should_not == :SSLv2
expect(cipher_details[:version]).not_to eq :SSLv2
end
end
end

View File

@ -471,7 +471,7 @@ shared_examples_for 'Msf::DBManager::Session' do
end
it "should not have session.via_exploit of 'exploit/multi/handler'" do
session.via_exploit.should_not == 'exploit/multi/handler'
expect(session.via_exploit).not_to eq 'exploit/multi/handler'
end
it { expect(subject.via_exploit).to eq(session.via_exploit) }
@ -814,7 +814,7 @@ shared_examples_for 'Msf::DBManager::Session' do
end
it "should not have session.via_exploit of 'exploit/multi/handler'" do
session.via_exploit.should_not == 'exploit/multi/handler'
expect(session.via_exploit).not_to eq 'exploit/multi/handler'
end
it { expect(subject.via_exploit).to eq(session.via_exploit) }

View File

@ -55,7 +55,7 @@ shared_examples_for 'Msf::ModuleManager::Loading' do
:modification_time => cached_modification_time
}
cached_modification_time.should_not == modification_time
expect(cached_modification_time).not_to eq modification_time
subject.file_changed?(module_path).should be_truthy
end
end