Consistent iD prefix in tests

This commit is contained in:
John Firebaugh
2013-01-22 18:23:18 -05:00
parent c263ebd4dc
commit ce7e6ff831
7 changed files with 7 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
describe('Connection', function() {
describe('iD.Connection', function() {
var c;
beforeEach(function() {

View File

@@ -1,4 +1,4 @@
describe('GeoJSON', function() {
describe('iD.format.GeoJSON', function() {
describe('#mapping', function() {
it('should be able to map a node to geojson', function() {

View File

@@ -1,4 +1,4 @@
describe('XML', function() {
describe('iD.format.XML', function() {
var node = iD.Node({ id: 'n-1', type: 'node', loc: [-77, 38] }),
way = iD.Way({ id: 'w-1', type: 'way', nodes: [] });

View File

@@ -1,4 +1,4 @@
describe('Background', function() {
describe('iD.Background', function() {
var c, d;
beforeEach(function() {

View File

@@ -1,4 +1,4 @@
describe("hash", function () {
describe("iD.Hash", function () {
var hash, map, controller;
beforeEach(function () {

View File

@@ -1,4 +1,4 @@
describe('Map', function() {
describe('iD.Map', function() {
var container, map;
beforeEach(function() {

View File

@@ -1,4 +1,4 @@
describe('Util', function() {
describe('iD.Util', function() {
var util;
it('#trueObj', function() {