Sha256: e67ebd504352c9f617e977b31a1522e8931868c51f717427d25c39c05c60dfb4
Contents?: true
Size: 568 Bytes
Versions: 26
Compression:
Stored size: 568 Bytes
Contents
describe "config/series.yml" do # rubocop:disable RSpec/DescribeClass series = Rubicure::Concerns::Util.load_yaml_file("#{spec_dir}/../config/series.yml") series.values.uniq {|attributes| attributes["series_name"] }.each do |attributes| context attributes["title"] do describe "started_date" do subject { attributes["started_date"] } it { should be_sunday } end describe "ended_date", if: attributes["ended_date"] do subject { attributes["ended_date"] } it { should be_sunday } end end end end
Version data entries
26 entries across 26 versions & 1 rubygems