Sha256: c3961cc18b8e69cd738ee5ed468a103d9b7a5a88d27f83cc7709ec63054f0219
Contents?: true
Size: 907 Bytes
Versions: 6
Compression:
Stored size: 907 Bytes
Contents
require 'spec_helper' require_relative '../../../../../lib/locomotive/steam/adapters/filesystem/yaml_loader.rb' require_relative '../../../../../lib/locomotive/steam/adapters/filesystem/yaml_loaders/page.rb' describe Locomotive::Steam::Adapters::Filesystem::YAMLLoaders::Page do let(:site_path) { default_fixture_site_path } let(:loader) { described_class.new(site_path) } describe '#load' do let(:scope) { instance_double('Scope', locale: :fr, default_locale: :en) } subject { loader.load(scope).sort { |a, b| a[:_fullpath] <=> b[:_fullpath] } } it 'tests various stuff' do expect(subject.size).to eq 24 expect(subject.first[:title]).to eq(en: 'Page not found') expect(subject[14][:slug]).to eq(en: 'music', fr: 'notre-musique') expect(subject[15][:_fullpath]).to eq 'songs' expect(subject[15][:template_path]).to eq(en: false) end end end
Version data entries
6 entries across 6 versions & 1 rubygems