blob: 6e53352e0355a7a47756b18b3f1e4ce2a5a9d622 [file] [log] [blame]
// Copyright (c) 2014 Ryan Lewis. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
author: Ryan Lewis
description: endsWith should return false when called on 'word' and passed 'r'.
features: [String.prototype.endsWith]
---*/
assert.sameValue('word'.endsWith('r'), false, '"word".endsWith("r")');