Sha256: fa4b75cb1af08d5bfecfa29bd232042b974876e43b15f1ef162cb12df0abc1f6

Contents?: true

Size: 560 Bytes

Versions: 10

Compression:

Stored size: 560 Bytes

Contents

describe Integer, "#beastly?" do
  # A051003 
  @seq = [666,1666,2666,3666,4666,5666,6660,6661,6662,6663,
          6664,6665,6666,6667,6668,6669,7666,8666,9666,
          10666,11666,12666,13666,14666,15666,16660,16661,
          16662,16663,16664,16665,16666,16667,16668,16669,
          17666,18666]

  @seq.each do |n|
    it "returns true for beastly number #{n}" do
      n.should be_beastly
    end
  end

  @seq.to_seq.invert.sample(100).each do |n|
    it "returns false for non-beastly number #{n}" do
      n.should_not be_beastly
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
numb-0.186.0 spec/numb/beastly_spec.rb
numb-0.185.0 spec/numb/beastly_spec.rb
numb-0.184.0 spec/numb/beastly_spec.rb
numb-0.181.0 spec/numb/beastly_spec.rb
numb-0.170.0 spec/numb/beastly_spec.rb
numb-0.152.0 spec/numb/beastly_spec.rb
numb-0.138.0 spec/numb/beastly_spec.rb
numb-0.125.0 spec/numb/beastly_spec.rb
numb-0.114.0 spec/numb/beastly_spec.rb
numb-0.111.0 spec/numb/beastly_spec.rb