Sha256: dd090bd700864451d4703ed51c6611f9e5e4c91b56710be952da4b7e85a4d45a
Contents?: true
Size: 1.43 KB
Versions: 11
Compression:
Stored size: 1.43 KB
Contents
require 'spec_helper' describe Ougai::Formatters::Base do subject { described_class.new(app_name, hostname) } context 'without arguments and hostname contains a UTF-8 char' do let (:app_name) { nil } let (:hostname) { nil } it 'has default app_name and default hostname' do myhostname = "Taro\xE2\x80\x99s-MacBook".force_encoding('ASCII-8BIT') allow(Socket).to receive(:gethostname).and_return(myhostname) expect(subject.app_name).to eq('rspec') expect(subject.hostname).to eq("Taro’s-MacBook") end end context 'with app_name' do let (:app_name) { 'myapp' } let (:hostname) { nil } it 'has specified app_name and default hostname' do myhostname = "Hanako's PC".encode('ASCII-8BIT') allow(Socket).to receive(:gethostname).and_return(myhostname) expect(subject.app_name).to eq('myapp') expect(subject.hostname).to eq("Hanako's PC") end end context 'with hostname' do let (:app_name) { nil } let (:hostname) { 'myhost' } it 'has default app_name and specified hostname' do expect(subject.app_name).to eq('rspec') expect(subject.hostname).to eq('myhost') end end context 'with app_name and hostname' do let (:app_name) { 'myapp' } let (:hostname) { 'myhost' } it 'has specified app_name and specified hostname' do expect(subject.app_name).to eq('myapp') expect(subject.hostname).to eq('myhost') end end end
Version data entries
11 entries across 11 versions & 1 rubygems