Files
redistat/spec/label_spec.rb
2010-07-19 01:06:45 +03:00

12 lines
268 B
Ruby

require "spec_helper"
describe Redistat::Label do
it "should initialize and SHA1 hash the label name" do
name = "/about/us"
label = Redistat::Label.new(name)
label.name.should == name
label.hash.should == Digest::SHA1.hexdigest(name)
end
end