Changeset 12945

Show
Ignore:
Timestamp:
06/01/08 00:32:03 (5 years ago)
Author:
kumatch
Message:

- Changed spec platform.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • events/phpframework/piece_framework/trunk/specs/Phwittr/StatusUpdateSpec.php

    r12936 r12945  
    5454    public function itいま何をしているか発言できる() 
    5555    { 
    56         $this->_createFooUserRecord(); 
     56        $this->_createUserRecord($this->_foo); 
    5757 
    5858        $mapper = Piece_ORM::getMapper('Users'); 
     
    7676    public function itコメントの先頭に「@ユーザ名」とつけるとReply扱い() 
    7777    { 
    78         $this->_createFooUserRecord(); 
    79         $this->_createBarUserRecord(); 
     78        $this->_createUserRecord($this->_foo); 
     79        $this->_createUserRecord($this->_bar); 
    8080 
    8181        $mapper = Piece_ORM::getMapper('Users'); 
     
    100100    public function itコメント内の「@ユーザ名」が有効なのは先頭だけ() 
    101101    { 
    102         $this->_createFooUserRecord(); 
    103         $this->_createBarUserRecord(); 
     102        $this->_createUserRecord($this->_foo); 
     103        $this->_createUserRecord($this->_bar); 
    104104 
    105105        $mapper = Piece_ORM::getMapper('Users'); 
     
    124124    public function itコメント内の「@ユーザ名」が複数あっても先頭のものしか有効にならない() 
    125125    { 
    126         $this->_createFooUserRecord(); 
    127         $this->_createBarUserRecord(); 
    128         $this->_createBazUserRecord(); 
     126        $this->_createUserRecord($this->_foo); 
     127        $this->_createUserRecord($this->_bar); 
     128        $this->_createUserRecord($this->_baz); 
    129129 
    130130        $mapper = Piece_ORM::getMapper('Users');