Correct type() logic
It should NOT run if the future parser is enabled
This commit is contained in:
parent
0a8963fbd3
commit
970141e36a
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
#! /usr/bin/env ruby -S rspec
|
||||
require 'spec_helper_acceptance'
|
||||
|
||||
describe 'type function', :unless => (UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) || !(is_future_parser_enabled?)) do
|
||||
describe 'type function', :unless => (UNSUPPORTED_PLATFORMS.include?(fact('operatingsystem')) || is_future_parser_enabled?) do
|
||||
describe 'success' do
|
||||
it 'types arrays' do
|
||||
pp = <<-EOS
|
||||
|
|
Loading…
Reference in a new issue