Sha256: 4c541ee7bd2a903109f014599f751014c69e708f27588cd3c7f7908aad9406a8
Contents?: true
Size: 1.22 KB
Versions: 26
Compression:
Stored size: 1.22 KB
Contents
import { isStringEqual } from './isStringEqual' describe('isStringEqual', () => { describe('given two uppercase strings', () => { describe('and the strings are equal', () => { it('should return true', () => { expect(isStringEqual('GET', 'GET')).toBe(true) }) }) describe('and the strings are not equal', () => { it('should return false', () => { expect(isStringEqual('GET', 'POST')).toBe(false) }) }) }) describe('given two lowercase strings', () => { describe('and the strings are equal', () => { it('should return true', () => { expect(isStringEqual('get', 'get')).toBe(true) }) }) describe('and the strings are not equal', () => { it('should return false', () => { expect(isStringEqual('get', 'post')).toBe(false) }) }) }) describe('given two strings cased differently', () => { describe('and the strings are equal', () => { it('should return true', () => { expect(isStringEqual('get', 'GET')).toBe(true) }) }) describe('and the strings are not equal', () => { it('should return false', () => { expect(isStringEqual('get', 'POST')).toBe(false) }) }) }) })
Version data entries
26 entries across 26 versions & 1 rubygems