+ 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
|
||||
gem 'metaid'
|
||||
gem 'rspec'
|
||||
gem 'rspec', '~> 2.0'
|
||||
gem 'flexmock'
|
||||
end
|
||||
|
|
|
@ -26,4 +26,4 @@ DEPENDENCIES
|
|||
hoe
|
||||
hoe-git
|
||||
metaid
|
||||
rspec
|
||||
rspec (~> 2.0)
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
require 'net/ldap'
|
||||
require 'rubygems'
|
||||
|
||||
Spec::Runner.configure do |config|
|
||||
RSpec.configure do |config|
|
||||
config.mock_with :flexmock
|
||||
end
|
||||
|
|
|
@ -4,12 +4,13 @@ require 'net/ber'
|
|||
require 'net/ldap'
|
||||
|
||||
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
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
context "arrays" do
|
||||
it "should properly encode/decode []" do
|
||||
[].should properly_encode_and_decode
|
||||
|
|
Loading…
Reference in a new issue