+ Upgrades our code to a recent rspec
This commit is contained in:
parent
36904e208a
commit
9a0da07f73
2
Gemfile
2
Gemfile
|
@ -5,6 +5,6 @@ gem 'hoe-git'
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem 'metaid'
|
gem 'metaid'
|
||||||
gem 'rspec'
|
gem 'rspec', '~> 2.0'
|
||||||
gem 'flexmock'
|
gem 'flexmock'
|
||||||
end
|
end
|
||||||
|
|
|
@ -26,4 +26,4 @@ DEPENDENCIES
|
||||||
hoe
|
hoe
|
||||||
hoe-git
|
hoe-git
|
||||||
metaid
|
metaid
|
||||||
rspec
|
rspec (~> 2.0)
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
require 'net/ldap'
|
require 'net/ldap'
|
||||||
require 'rubygems'
|
|
||||||
|
|
||||||
Spec::Runner.configure do |config|
|
RSpec.configure do |config|
|
||||||
config.mock_with :flexmock
|
config.mock_with :flexmock
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,8 +4,9 @@ require 'net/ber'
|
||||||
require 'net/ldap'
|
require 'net/ldap'
|
||||||
|
|
||||||
describe "BER encoding of" do
|
describe "BER encoding of" do
|
||||||
def properly_encode_and_decode
|
|
||||||
simple_matcher('properly encode and decode') do |given|
|
RSpec::Matchers.define :properly_encode_and_decode do
|
||||||
|
match do |given|
|
||||||
given.to_ber.read_ber.should == given
|
given.to_ber.read_ber.should == given
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue