Return-Path: X-Original-To: apmail-climate-commits-archive@minotaur.apache.org Delivered-To: apmail-climate-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 20C38C0F6 for ; Mon, 24 Jun 2013 13:31:05 +0000 (UTC) Received: (qmail 85942 invoked by uid 500); 24 Jun 2013 13:31:02 -0000 Delivered-To: apmail-climate-commits-archive@climate.apache.org Received: (qmail 85915 invoked by uid 500); 24 Jun 2013 13:31:01 -0000 Mailing-List: contact commits-help@climate.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@climate.incubator.apache.org Delivered-To: mailing list commits@climate.incubator.apache.org Received: (qmail 85667 invoked by uid 99); 24 Jun 2013 13:30:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jun 2013 13:30:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jun 2013 13:30:57 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 143AE2388A6E; Mon, 24 Jun 2013 13:30:37 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1496033 - in /incubator/climate/trunk/rcmet/src/main/ui/test/unit/services: ./ EvaluationSettingsService.js Date: Mon, 24 Jun 2013 13:30:37 -0000 To: commits@climate.incubator.apache.org From: joyce@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130624133037.143AE2388A6E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: joyce Date: Mon Jun 24 13:30:36 2013 New Revision: 1496033 URL: http://svn.apache.org/r1496033 Log: CLIMATE-146 progress - Add evaluationSettings init test Added: incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/ incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/EvaluationSettingsService.js Added: incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/EvaluationSettingsService.js URL: http://svn.apache.org/viewvc/incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/EvaluationSettingsService.js?rev=1496033&view=auto ============================================================================== --- incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/EvaluationSettingsService.js (added) +++ incubator/climate/trunk/rcmet/src/main/ui/test/unit/services/EvaluationSettingsService.js Mon Jun 24 13:30:36 2013 @@ -0,0 +1,34 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http: *www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. +**/ + +'use strict'; + +describe('OCW Services', function() { + + beforeEach(module('ocw.services')); + + describe('EvaluationSettings', function() { + + it('should initialize the evaluationSettings service', function() { + inject(function(evaluationSettings) { + expect(evaluationSettings).not.toEqual(null); + }); + }); + }); +});