Sha256: 4c6ceb08d21079368d47e9af58b9c364d90daa246de5bf3fda4da46742186743
Contents?: true
Size: 1.41 KB
Versions: 3
Compression:
Stored size: 1.41 KB
Contents
ENV['RAILS_ENV'] = 'test' require_relative 'dummy/config/environment' require 'minitest/autorun' require 'minitest/reporters' Minitest::Reporters.use! [Minitest::Reporters::ProgressReporter.new] require "rails/test_help" # adds stuff like @routes, etc. require 'cells' require "cells-erb" MiniTest::Spec.class_eval do include Cell::Testing end class BassistCell < Cell::ViewModel self.view_paths = ['test/fixtures'] end class MusicianController < ActionController::Base def view_with_concept_with_show render :inline => %{<%= concept("view_extensions_test/cell", "Up For Breakfast", volume: 1).show %>} # TODO: concept doesn't need .call end def view_with_concept_without_call render :inline => %{<%= concept("view_extensions_test/cell", "A Tale That Wasn't Right") %>} # this tests ViewModel#to_s. end def view_with_concept_with_call render :inline => %{<%= concept("view_extensions_test/cell", "A Tale That Wasn't Right").call %>} end def view_with_cell_with_call render :inline => %{<%= cell("view_extensions_test/song", "A Tale That Wasn't Right").call %>} end def action_with_concept_with_call render text: concept("view_extensions_test/cell", "A Tale That Wasn't Right").call end def action_with_cell_with_call render text: cell("view_extensions_test/song", "A Tale That Wasn't Right").call end end Rails.backtrace_cleaner.remove_silencers! # YES, stacktraces are awesome!
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cells-4.0.0.beta6 | test/test_helper.rb |
cells-4.0.0.beta5 | test/test_helper.rb |
cells-4.0.0.beta4 | test/test_helper.rb |