diff --git a/tests/db/UpgradeDBTest.php b/tests/db/UpgradeDBTest.php
index 77195bf2d0dd0415b32b4f4e9c845ebfb3799c14..9e6fcd560f4744628af8d1ae012320b265113f36 100644
--- a/tests/db/UpgradeDBTest.php
+++ b/tests/db/UpgradeDBTest.php
@@ -140,4 +140,27 @@ class UpgradeDB_268_Test extends UpgradeDBTestCase {
   }
 }
 
+
+
+class UpgradeDB_276_Test extends UpgradeDBTestCase {
+
+  public function prepare() {
+    $this->query("update variables set liste='0:Pas informatisé\r\n1:Pergame\r\n2:Paprika\r\n3:Orphée\r\n4:Opsys\r\n5:Microbib\r\n6:Atalante\r\n7:Multilis\r\n8:Bibal\r\n9:Milord\r\n10:Elissa\r\n11:v-smart\r\n12:Koha\r\n13:Nanook\r\n14:Carthame\r\n15:Dynix\r\n' where clef='sigb';");
+
+    $this->query("update variables set liste='0:aucun\r\n1:pergame\r\n2:web-service Opsys\r\n3:serveur Z39.50\r\n4:web-service V-Smart\r\n5:web-service Koha\r\n6:web-service Carthame\r\n7:web-service AFI-Nanook\r\n8:web-service Orphée\r\n9:web-service Microbib\r\n10:web-service BiblixNet\r\n11:web-service Dynix-Symphony\r\n' where clef='comm_sigb';");
+  }
+
+
+  /** @test */
+  public function cdScriptShouldBePresentInSigbList() {
+    $this->assertContains("16:Cd-Script\r\n", $this->query('select liste from variables where clef = "sigb";')->fetch()['liste']);
+  }
+
+
+  /** @test */
+  public function cdScriptShouldBePresentInCommSigbList() {
+    $this->assertContains("12:Cd-Script\r\n", $this->query('select liste from variables where clef = "comm_sigb";')->fetch()['liste']);
+  }
+}
+
 ?>
\ No newline at end of file