summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries <dries@buytaert.net>2011-12-19 09:41:16 -0500
committerDries <dries@buytaert.net>2011-12-19 09:41:16 -0500
commitba3e11f132e3e467408e6929342f1df0b0105f7a (patch)
treeb7ac8c71fe349cb9f0e036686088cdfb29096777 /modules
parentee6826fc164a012bf2d3f14de69e4f48c849647c (diff)
parent9e12767c75191b440086a6a54f1d470a1b550332 (diff)
downloadbrdo-ba3e11f132e3e467408e6929342f1df0b0105f7a.tar.gz
brdo-ba3e11f132e3e467408e6929342f1df0b0105f7a.tar.bz2
Merge branch '7.x' of git.drupal.org:project/drupal into 7.x
Diffstat (limited to 'modules')
-rw-r--r--modules/simpletest/tests/database_test.test18
1 files changed, 2 insertions, 16 deletions
diff --git a/modules/simpletest/tests/database_test.test b/modules/simpletest/tests/database_test.test
index 91a51f361..87d386aa7 100644
--- a/modules/simpletest/tests/database_test.test
+++ b/modules/simpletest/tests/database_test.test
@@ -1454,23 +1454,9 @@ class DatabaseSelectTestCase extends DatabaseTestCase {
}
/**
- * Test that a comparison with NULL is always FALSE.
- */
- function testNullCondition() {
- $this->ensureSampleDataNull();
-
- $names = db_select('test_null', 'tn')
- ->fields('tn', array('name'))
- ->condition('age', NULL)
- ->execute()->fetchCol();
-
- $this->assertEqual(count($names), 0, t('No records found when comparing to NULL.'));
- }
-
- /**
* Test that we can find a record with a NULL value.
*/
- function testIsNullCondition() {
+ function testNullCondition() {
$this->ensureSampleDataNull();
$names = db_select('test_null', 'tn')
@@ -1485,7 +1471,7 @@ class DatabaseSelectTestCase extends DatabaseTestCase {
/**
* Test that we can find a record without a NULL value.
*/
- function testIsNotNullCondition() {
+ function testNotNullCondition() {
$this->ensureSampleDataNull();
$names = db_select('test_null', 'tn')