diff options
author | Hailee Kenney <hailee@puppet.com> | 2017-03-03 16:40:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-03 16:40:32 +0000 |
commit | 01b951b4966c1fe150a160fdc8f4196b6e21ee51 (patch) | |
tree | 1643609784f5b46f3ef7ff1ca1c16e08b8c24d5f /spec/functions/keys_spec.rb | |
parent | 9e28f8f80ab512efff5eba4fecbaadb4220ca01c (diff) | |
parent | 2f463600c2c0b6ac95ec71d3e5b17d1b2abdcd22 (diff) |
Merge pull request #732 from pmcmaw/FM-6063-unitTests
(FM-6063) - Unit tests for high effort functions
Diffstat (limited to 'spec/functions/keys_spec.rb')
-rwxr-xr-x | spec/functions/keys_spec.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/spec/functions/keys_spec.rb b/spec/functions/keys_spec.rb index 2e009dc..fc7d6d8 100755 --- a/spec/functions/keys_spec.rb +++ b/spec/functions/keys_spec.rb @@ -16,4 +16,9 @@ describe 'keys' do result = subject.call([{ 'key1' => 'value1', 'key2' => 'value2' }]) expect(result).to match_array(['key1', 'key2']) end + + it 'should run with UTF8 and double byte characters' do + result = subject.call([{ 'ҝểү' => '√ẳŀμệ', 'キー' => '値' }]) + expect(result).to match_array(['ҝểү', 'キー']) + end end |