Sha256: 7176542e5a671f50ca23baf63d6539a47fbf1cfe3404c18971639078ca3f0fab
Contents?: true
Size: 1015 Bytes
Versions: 1
Compression:
Stored size: 1015 Bytes
Contents
# This file is part of ruby-flores. # Copyright (C) 2015 Jordan Sissel # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # # encoding: utf-8 require "randomized" require "rspec/stress_it" RSpec.configure do |c| c.extend RSpec::StressIt end describe "number" do let(:number) { Randomized.number(0..200) } analyze_it "should be less than 100", [:number] do expect(number).to(be < 100) end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
flores-0.0.2 | examples/analyze_number.rb |