Sha256: 381bd81d932b0af7de43f1e07e3893f26bf0ef1718c9c3eeb1209ba3fff68f31
Contents?: true
Size: 624 Bytes
Versions: 1
Compression:
Stored size: 624 Bytes
Contents
# encoding: UTF-8 require 'helper' describe PrayerTimes::Calculator do subject { PrayerTimes::Calculator.new 'MWL', {} } it { expect(subject).to respond_to(:calculation_method) } it { expect(subject).to respond_to(:time_format) } it { expect(subject).to respond_to(:times_names) } it { expect(subject).to respond_to(:time_suffixes) } it { expect(subject).to respond_to(:invalid_time) } it { expect(subject).to respond_to(:iterations_count) } it { expect(subject).to respond_to(:times_offsets) } it { expect(subject).to respond_to(:get_times) } it { expect(subject).to be_a(PrayerTimes::Setters) } end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
prayer_times-0.1.3 | spec/prayer_times/calculator_spec.rb |