blob: d8b72e71c94b5c1cb635fdaa995c6691783f2439 [file] [log] [blame]
require File.expand_path('../../spec_helper', __FILE__)
module Pod
describe Target do
describe '#c99ext_identifier' do
before do
@target = Target.new
end
it 'should mask, but keep leading numbers' do
@target.send(:c99ext_identifier, '123BananaLib').should == '_123BananaLib'
end
it 'should mask invalid chars' do
@target.send(:c99ext_identifier, 'iOS-App BânánàLïb').should == 'iOS_App_B_n_n_L_b'
end
end
end
end